home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Media 22
/
PC MEDIA CD22.iso
/
share
/
prog
/
datalib2
/
field.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-14
|
641b
|
31 lines
#include "datapriv.hpp"
/********************* FIELD FUNCTIONS *************************/
// This is the constructor for a field, which is put first
// on a linked list
/********************* CONSTRUCTOR *****************************/
field::field(int inumber,char *iname,char itype,int ilen,
int irdp,int irecpos)
{
number=inumber;
strncpy(name,iname,10); name[10]=0;
type=itype;
len=ilen;
rdp=irdp;
recpos=irecpos;
}
/********************** DESTRUCTOR *****************************/
// This is the destructor for a field, which also cleans up the pointers
field::~field(void)
{
}